home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / rpc_cmsd.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  88 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details 
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10213);
  10.  script_bugtraq_id(428, 524, 5356);
  11.  script_version ("$Revision: 1.20 $");
  12.  script_cve_id("CVE-1999-0320", "CVE-1999-0696", "CVE-2002-0391");
  13.  name["english"] = "cmsd service";
  14.  name["francais"] = "Service cmsd";
  15.  script_name(english:name["english"], francais:name["francais"]);
  16.  
  17.  desc["english"] = "
  18. The cmsd RPC service is running. 
  19. This service has a long history of security holes, so you should really
  20. know what you are doing if you decide to let it run.
  21.  
  22. *** No security hole regarding this program has been tested, so 
  23. *** this might be a false positive
  24.  
  25. Solution : We suggest that you disable this service.
  26. Risk factor : High";
  27.  
  28.  
  29.  desc["francais"] = "
  30. Le service RPC cmsd tourne.
  31. Ce service a une longue histoire
  32. de problΦmes de sΘcuritΘ, donc 
  33. vous devriez vraiment savoir ce
  34. que vous faites si vous dΘcidez
  35. de le laisser tourner.
  36.  
  37. * AUCUN PROBLEME DE SECURITE 
  38.   N'A ETE TESTE, DONC CETTE
  39.   ALERTE EST PEUT ETRE 
  40.   FAUSE *
  41.  
  42. Il est recommandΘ que vous dΘsactiviez
  43. ce service.
  44.  
  45. Facteur de risque : ElevΘ";
  46.  
  47.  
  48.  script_description(english:desc["english"], francais:desc["francais"]);
  49.  
  50.  summary["english"] = "Checks the presence of a RPC service";
  51.  summary["francais"] = "VΘrifie la prΘsence d'un service RPC";
  52.  script_summary(english:summary["english"], francais:summary["francais"]);
  53.  
  54.  script_category(ACT_GATHER_INFO);
  55.  
  56.  
  57.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  58.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  59.  family["english"] = "RPC"; 
  60.  family["francais"] = "RPC";
  61.  script_family(english:family["english"], francais:family["francais"]);
  62.  script_dependencie("rpc_portmap.nasl");
  63.  script_require_keys("rpc/portmap");
  64.  exit(0);
  65. }
  66.  
  67. #
  68. # The script code starts here
  69. #
  70.  
  71.  
  72. include("misc_func.inc");
  73.  
  74.  
  75. RPC_PROG = 100068;
  76. tcp = 0;
  77. port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_UDP);
  78. if(!port){
  79.     port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_TCP);
  80.     tcp = 1;
  81.     }
  82.  
  83. if(port)
  84. {
  85.  if(tcp)security_hole(port);
  86.  else security_hole(port, protocol:"udp");
  87. }
  88.